home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d21 / chkdv.arc / DV.H < prev    next >
C/C++ Source or Header  |  1988-09-30  |  3KB  |  55 lines

  1. /*  header for desqview interface functions */
  2. /*@H************************ < header          > ****************************
  3. *                                                                           *
  4. *   CHECKDV  : DV.H  header file for checkdv functions                      *
  5. *                                                                           *
  6. *   Author   : Donald J. Gloistein                                          *
  7. *                                                                           *
  8. *   Program, Source, Documentation (c) 1987, all rights reserved.           *
  9. *   Compiled code may be used in your library, and linked to your programs  *
  10. *   BUT, the source code nor a library based on the compiled modules may be *
  11. *   commercially distributed.                                               *
  12. *   This is not shareware, no donation is expected. But I do retain rights  *
  13. *   to the source.                                                          *
  14. *                                                                           *
  15. *   See manual for license and information to general public.               *
  16. *                                                                           *
  17. *                                                                           *
  18. *--------------------------- Implementation Notes --------------------------*
  19. *                                                                           *
  20. *   compiled with :                                                         *
  21. *   compiled by   : MICROSOFT C v.5.00                                      *
  22. *                                                                           *
  23. *   linked with   : MYLIB.LIB                                               *
  24. *   linked by     : MICROSOFT LINK 3.61                                     *
  25. *                                                                           *
  26. *   global declarations for the checkdv.asm module, needs to be included    *
  27. *   when using the functions in a C program.                                *
  28. *                                                                           *
  29. *                                                                           *
  30. *---------------------------      Author(s)        -------------------------*
  31. *     Initials ---- Name ---------------------------------                  *
  32. *      DjG          Donald J. Gloistein                                     *
  33. *                                                                           *
  34. *************************************************************************@H*/
  35.  
  36. /*@R************************< Revision History >*****************************
  37. *                                                                           *
  38. *   version -- date -- init ---Notes----------------------                  *
  39. *    1.00    12-13-87  DjG                                                  *
  40. *                                                                           *
  41. *************************************************************************@R*/
  42.  
  43.  
  44. extern unsigned dv_vid_seg;
  45. extern unsigned dv_vid_off;
  46. extern int in_dv;
  47. extern int dv_maj_version;
  48. extern int dv_min_version;
  49.  
  50. int dv_get_version(void);
  51. unsigned int dv_get_video_buffer(unsigned int);
  52. void dv_pause(void);
  53. void dv_begin_critical(void);
  54. void dv_end_critical(void);
  55.